void CDialogFilecopy::OnCopy() 
{
	// TODO: Add your control notification handler code here
	UpdateData();
	//ж·ǷϷ
	if (m_strSource.IsEmpty())
	{
		MessageBox("Please input Source Path!");
		return;
	}
	if (m_strTarget.IsEmpty())
	{
		MessageBox("Please input Target Path!");
		return;
	}

	//
	if (!CFileOP::Copy(m_strSource, m_strTarget))
		AfxMessageBox("ʧ!");
	else
		AfxMessageBox("Ƴɹ!");
	
}

